{% extends "base.html" %} {% block title %}My Articles - Quick Care Connect{% endblock %} {% block content %}

My Articles

New Article
My Articles Queue ({{ blogs|length }})
{% if blogs %}
{% for blog in blogs %} {% endfor %}
Cover Article Details Category Status Dates Actions
{% if blog.featured_image %} Cover {% else %}
{% endif %}
{{ blog.title }}
{% if blog.excerpt %}{{ blog.excerpt }}{% else %}{{ blog.content|striptags|truncate(100) }}{% endif %}
{% if blog.status == 'rejected' and blog.admin_feedback %}
Admin Revision Required:
{{ blog.admin_feedback }}
{% endif %} {% if blog.tags %}
{% for tag in blog.tags.split(',')[:3] %} {{ tag.strip() }} {% endfor %}
{% endif %}
{{ blog.category or 'General' }} {% if blog.status == 'published' %} Published {% elif blog.status == 'pending' %} Under Review {% elif blog.status == 'rejected' %} Rejected {% elif blog.status == 'draft' %} Draft {% else %} {{ blog.status|title }} {% endif %}
Created:
{{ blog.created_at.strftime('%b %d, %Y') }}
{% if blog.published_at %}
{% if blog.status == 'scheduled' %}Publishes:{% else %}Published:{% endif %}
{{ blog.published_at.strftime('%b %d, %Y') }}
{% endif %}
{% if blog.status in ['draft', 'rejected'] %}
{% endif %}
{% else %}
No articles yet

Start sharing your medical knowledge by writing your first article!

Create Your First Article
{% endif %}
{% endblock %}